home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 March / PCWorld_2002-03_cd.bin / Software / TemaCD / xteq / setup.exe / {app} / plugins / XQ WinNT AutoShares 1.xpl < prev    next >
Text File  |  2001-04-12  |  2KB  |  65 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="2"
  4. "UIPATH"="Network\Security\Shares"
  5. "NAME"="CD-ROM/Floppy Shares Access"
  6. "VERSION"="1.42"
  7. "OSVERSION"="010101"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Deactivate CD-ROM shares when logged on"
  10. "TEXT 2"="Deactivate floppy shares when logged on"
  11. "DESCRIPTION 1"="These options control what should happen with CD-ROM and floppy shares when a user logs on."
  12. "DESCRIPTION 2"="By default, all shares on a machine are still accessible when a user logs on."
  13. "DESCRIPTION 3"="If the options are activated, the shares are deactivated while a user is logged on. After this user logs off, the shares are activated again."
  14. "AUTHOR"="Xteq Systems"
  15. "CONTACTURL"="http://www.xteq.com"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  17. "COMMENT 1"=" "
  18. "COMMENT 2"="Thanks to Alex Morris (alexmorris@uk.ibm.com) for his help!"
  19.  
  20.  
  21. sp="HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\"
  22. sV1="AllocateCDRoms"
  23. sV2="AllocateFloppies"
  24.  
  25. Sub Plugin_Initialize 
  26.   i=RegReadValue(sP&sV1)
  27.   if IsEmpty(i)=false then
  28.    if i=1 then Call SetUIElement(1,true)
  29.   end if
  30.  
  31.   i=RegReadValue(sP&sV2)
  32.   if IsEmpty(i)=false then
  33.    if i=1 then Call SetUIElement(2,true)
  34.   end if
  35.  
  36. End Sub
  37.  
  38. Sub Plugin_CheckData(ElementIndex)
  39. End Sub
  40.  
  41. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  42.  b=GetUIElement(1)
  43.  if b=true then
  44.    Call RegWriteValue(sP&sV1,"1",1)
  45.  else
  46.    Call RegWriteValue(sP&sV1,"0",1)
  47.  end if
  48.  
  49.  b=GetUIElement(2)
  50.  if b=true then
  51.    Call RegWriteValue(sP&sV2,"1",1)
  52.  else
  53.    Call RegWriteValue(sP&sV2,"0",1)
  54.  end if
  55.  
  56.  Restart
  57. End Sub
  58.  
  59.  
  60. Sub Plugin_Terminate 
  61. End Sub
  62.  
  63.  
  64.  
  65.